home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / settime.sql < prev    next >
Text File  |  2000-05-12  |  1KB  |  24 lines

  1. /* RCSVER $Id: settime.sql,v 1.1 1999-02-25 14:55:39-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        settime.sql 
  6. * Date:        02/23/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the settime table. settime contains information       
  9. *        from the set time farebox record.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE settime
  13. (
  14.     det_seq_num    NUMBER(38)    /* pointer to mstrrec record */
  15.         CONSTRAINT ref1_settime REFERENCES mstrrec(det_seq_num),
  16.     farebox_glid    NUMBER(38),    /* Farebox ID from global_id */
  17.         conv_date       DATE,           /* Date for this record */
  18.     new_date    DATE,        /* New date/time entered */
  19.     new_dow        NUMBER(1),    /* New day of week (0-6) */
  20.     new_tz        NUMBER(38),    /* New timezone */
  21.     new_isdst    NUMBER(1),    /* Is this daylight savings time? */
  22.     CONSTRAINT pk_settime PRIMARY KEY (det_seq_num)
  23. );
  24.